home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue50 / Except / TestFileDump.dpr < prev    next >
Encoding:
Text File  |  1999-09-06  |  294 b   |  20 lines

  1. program TestFileDump;
  2.  
  3. uses
  4.   HVEST,
  5.   Forms,
  6.   HVDumpExceptToFile,
  7.   TestFileDumpUnit1 in 'TestFileDumpUnit1.pas' {Form1};
  8.  
  9. {R *.RES}
  10.  
  11. {$IFDEF BindingRTLI}
  12. {$R *.RLI}
  13. {$ENDIF}
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.CreateForm(TForm1, Form1);
  18.   Application.Run;
  19. end.
  20.